home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #6 / CD 6 (Black) - 2001.iso / K-CS.dcr / 00170.ls < prev    next >
Encoding:
Text File  |  2001-02-20  |  623 b   |  26 lines

  1. global ImageNum, HPos, VPos
  2.  
  3. on new me
  4.   puppetSound("Landelyd")
  5.   set ImageNum to 1149
  6.   set HPos to the mouseH
  7.   set VPos to the mouseV
  8.   set the locH of sprite 74 to HPos
  9.   set the locV of sprite 74 to VPos
  10.   set the visible of sprite 74 to 1
  11.   set the locH of sprite 99 to 780
  12.   set the visible of sprite 99 to 1
  13. end
  14.  
  15. on exitFrame
  16.   set ImageNum to ImageNum + 1
  17.   if ImageNum > 1164 then
  18.     go(#next)
  19.   end if
  20.   set the locH of sprite 74 to HPos
  21.   set the locV of sprite 74 to VPos - ((64 - ((ImageNum - 1157) * (ImageNum - 1157))) * 3)
  22.   set the memberNum of sprite 74 to ImageNum
  23.   updateStage()
  24.   go(the frame)
  25. end
  26.